home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1996 October / MACPOWER-1996-10.ISO.7z / MACPOWER-1996-10.ISO / AMUG / Internet_31 / Analog 1.9b6d / Analog 1.9b6d ト / analog.cfg < prev    next >
Text File  |  1996-04-24  |  4KB  |  132 lines

  1. # Analog.cfg - Configuration file for Analog
  2. #
  3. LOGFILE WebStar.log
  4. #CACHEFILE cache.out
  5. #
  6. OUTPUT HTML
  7. # could be ASCII, HTML, or CACHE
  8. OUTFILE Report.html
  9. #
  10. REPORTORDER mWdDhHoSirfbBce
  11. # A string like "mWdDhHoSirfbBce" giving the order in which the reports will
  12. #   be output. You should make sure to include each of the above letters exactly
  13. #   once or you will not get some report even if you specifically request it
  14. #   later, or you may get some report twice. The letters mean
  15. #   m = monthly report   W = weekly report    d = daily summary
  16. #   D = daily report     h = hourly summary   H = hourly report
  17. #   o = domain report    S = host report      i = directory report
  18. #   r = request report   f = referer report   b = browser summary
  19. #   B = browser report   e = error report     c = status code report 
  20. #
  21. # whether we want each of the reports by default 
  22. GENERAL ON        # General statistics and GoTo's 
  23. MONTHLY ON        # Monthly report 
  24. DAILY ON        # Daily summary 
  25. FULLDAILY OFF    # Daily report 
  26. # One line for each day. Think about the poor people loading your page from
  27. #   the other side of the world before turning this on by default. 
  28. WEEKLY OFF        # Weekly report 
  29. HOURLY ON        # Hourly summary 
  30. FULLHOURLY OFF    # Hourly report 
  31. # One line for each hour ever. You really don't want this on by default. 
  32. DOMAIN ON        # Domain report 
  33. # Not called DOMAIN because clashes with math.h 
  34. DIRECTORY ON    # Directory report 
  35. REQUEST ON        # Request report 
  36. FULLHOSTS OFF    # Host report 
  37. # Full hostname report. Typically very long output and slow to produce
  38. #   on a full logfile, unless MINHOSTREQS or BYTES is high as applicable 
  39. REFERER ON        # Referer report 
  40. BROWSER ON        # Browser summary 
  41. FULLBROWSER OFF    # Browser report 
  42. STATUS OFF        # Status code report 
  43. #
  44. DOMCOLS RrBb
  45. # Which columns we want to appear in the domain report, and in which order.
  46. #   The string can contain any of the following four letters:
  47. #   R   Number of requests from each domain
  48. #   r   Percentage of the requests from each domain
  49. #   B   Total number of bytes transferred to each domain
  50. #   b   The percentage of traffic to each domain 
  51. # And the same for the other reports 
  52. HOSTCOLS RrBb
  53. DIRCOLS RrBb
  54. REQCOLS RrBb
  55. MONTHCOLS RrBb
  56. DAYCOLS RrBb
  57. FULLDAYCOLS RrBb
  58. WEEKCOLS RrBb
  59. HOURCOLS RrBb
  60. FULLHOURCOLS RrBb
  61. REFCOLS RrBb
  62. BROWCOLS RrBb
  63. FULLBROWCOLS RrBb
  64. #
  65. # Should the time graphs be calculated by requests R or bytes B? 
  66. MONTHGRAPH R
  67. DAYGRAPH R
  68. FULLDAYGRAPH R
  69. HOURGRAPH R
  70. FULLHOURGRAPH R
  71. WEEKGRAPH R
  72. #
  73. # Should they go forwards (oldest entries at top) or backwards?
  74. #   (NB You can mix them, but probably don't want to) 
  75. MONTHLYBACK OFF
  76. FULLDAILYBACK OFF
  77. FULLHOURLYBACK OFF
  78. WEEKLYBACK OFF
  79. #
  80. GRAPHICAL ON
  81. # whether the graphs should use proper graphics or just ASCII art. ON will
  82. #   make it prettier but will make the output longer and harder to download 
  83. #
  84. REQMINREQS 10
  85. # the min. no. of requests a URL should have before appearing on the
  86. #   request report. Setting this to about 10 clears out a lot of junk.
  87. #   You can also use e.g. 0.1% for any file with 0.1% of the requests.
  88. #   And setting it to a negative number gives a top n report. 
  89. #
  90. REQMINBYTES 0.01%
  91. # if we are sorting by bytes, use this instead. You can use
  92. #   1000234 for 1000234 bytes
  93. #   100k    for 100 kilobytes  (and 100M etc. similarly)
  94. #   0.01%   for any file with 0.01% of the bytes
  95. #   -50     for the 50 files with the most bytes  
  96. #
  97. # now the same for directory, domain and hostname reports. 
  98. DIRMINREQS 10
  99. DIRMINBYTES 0.01%
  100. DOMMINREQS 1
  101. DOMMINBYTES 0
  102. HOSTMINREQS 100
  103. # Set the HOST ones quite high if you want it to finish in reasonable time 
  104. HOSTMINBYTES 0.01%
  105. REFMINREQS 20
  106. REFMINBYTES 0.01%
  107. BROWMINREQS -20
  108. BROWMINBYTES -20
  109. FULLBROWMINREQS -100
  110. FULLBROWMINBYTES -100
  111. # And the same for subdomains you have specified. These can't be negative. 
  112. SUBDOMMINREQS 1000
  113. SUBDOMMINBYTES 0.5%
  114. # And the min number of occurences before an error gets on the error report 
  115. ERRMINOCCS 1
  116. #
  117. # how should the various reports be sorted? Legal values ar BYREQUESTS,
  118. #   BYBYTES and ALPHABETICAL 
  119. REQSORTBY        REQUESTS
  120. DOMSORTBY        BYTES
  121. DIRSORTBY        BYTES
  122. HOSTSORTBY        ALPHABETICAL
  123. REFSORTBY        REQUESTS
  124. BROWSORTBY        REQUESTS
  125. FULLBROWSORTBY    REQUESTS
  126. #
  127. WEEKBEGINSON SUNDAY
  128. # The 1st day of the week. I think it's SUNDAY, but you can choose any day. 
  129. #
  130. SEPCHAR ,
  131. #
  132. # END